:root {
    --bg-dark: #12100e;
    --card-dark: #1a1614;
    --border-color: #2a2420;
    --accent-orange: #c86d44;
    --text-main: #f5f2eb;
    --text-muted: #a39c94;
    --bg-light-section: #fbf9f5;
    --text-dark: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-badge {
    background: var(--accent-orange);
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.logo-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.logo-text small {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.navbar nav ul li a:hover::after, .navbar nav ul li a.active::after {
    width: 100%;
}

.navbar nav ul li a:hover, .navbar nav ul li a.active {
    color: var(--text-main);
}






:root {
    --bg-cream: #1a1614;
    --orange-primary: #c86d44;
    --orange-light: #FF9B71;
    --pink-accent: #FF8FA3;
    --pink-bg: #dc703a;
    --text-dark: #e77954;
    --white: #1a1614;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-cream);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2, h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
}

.italic-text {
    font-style: italic;
    font-weight: 300;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--orange-primary);
}

/* HERO SECTION */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 60px;
    border-radius: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 83, 48, 0.05);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.05;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #635853;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--orange-primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-secondary {
    background: var(--bg-cream);
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #f0d5cc;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.orange-circle-bg {
    width: 380px;
    height: 380px;
    background: var(--orange-light);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.hero-image-container img {
    width: 330px;
    height: 420px;
    object-fit: cover;
    border-radius: 200px 200px 30px 30px;
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
}

.sparkle-icon {
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

/* INTRO & SERVICES CARD */
.intro-services-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: 35px;
    margin-bottom: 30px;
}

.intro-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.image-box-small img {
    width: 180px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.intro-text-block h2 {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.intro-text-block h3 {
    font-size: 0.95rem;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

.intro-text-block p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #635853;
}

.signature {
    font-family: cursive;
    font-size: 1.2rem;
    color: var(--orange-primary);
    margin-top: 10px;
}

.services-right {
    background: var(--orange-primary);
    padding: 30px;
    border-radius: 25px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-list li {
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* SELECTED WORKS SECTION */
.selected-works-section {
    background: var(--orange-primary);
    padding: 50px;
    border-radius: 35px;
    margin-bottom: 30px;
    color: var(--white);
}

.works-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.works-header h2 {
    font-size: 2rem;
}

.view-all-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.work-card {
    background: var(--bg-cream);
    color: var(--text-dark);
    padding: 25px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.work-card:hover {
    transform: translateY(-8px);
}

.work-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: #8c7f78;
    letter-spacing: 1px;
}

.work-card h3 {
    font-size: 1.3rem;
    margin-top: 5px;
}

.work-sub {
    font-size: 0.8rem;
    color: #7a6e69;
    margin-bottom: 15px;
}

.work-img-box {
    position: relative;
    height: 180px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arrow-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--orange-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* GRID TWO COLUMNS */
.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.box-card {
    background: var(--white);
    padding: 40px;
    border-radius: 35px;
}

.box-card h3 {
    font-size: 1.6rem;
    color: var(--orange-primary);
    margin-bottom: 25px;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-feat {
    display: flex;
    gap: 12px;
}

.s-icon {
    font-size: 1.5rem;
}

.service-feat h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.service-feat p {
    font-size: 0.75rem;
    color: #7a6e69;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-box {
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.stat-box.orange-bg {
    background: #FFE8E0;
}

.stat-box.pink-bg {
    background: var(--pink-bg);
}

.stat-box h2 {
    font-size: 2.2rem;
    color: var(--orange-primary);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.7rem;
    font-weight: 700;
    color: #635853;
}

/* TESTIMONIALS */
.testimonials-section {
    background: var(--white);
    padding: 40px;
    border-radius: 35px;
    margin-bottom: 30px;
}

.testimonials-section h3 {
    font-size: 1.6rem;
    color: var(--orange-primary);
    margin-bottom: 25px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.test-card {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.test-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 0.85rem;
}

.client-info span {
    font-size: 0.75rem;
    color: #7a6e69;
}

/* FOOTER CTA */
.footer-cta {
    background: var(--white);
    padding: 50px;
    border-radius: 35px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-left h2 {
    font-size: 3rem;
    color: var(--orange-primary);
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #635853;
}

.cta-right {
    background: var(--pink-bg);
    padding: 40px;
    border-radius: 30px;
    position: relative;
}

.sun-icon {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 2.5rem;
}

.pink-box-cta h3 {
    font-size: 1.3rem;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

.pink-box-cta p {
    font-size: 0.85rem;
    color: #635853;
    margin-bottom: 20px;
}

.btn-get-in-touch {
    display: inline-block;
    background: var(--orange-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
}

/* ANIMACIONES JS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* FOOTER / CTA */
.footer-cta {
    background: var(--dark-green);
    color: var(--white);
    padding: 50px;
    border-radius: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.footer-left h2 span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #E8A87C;
}

.footer-right {
    display: flex;
    gap: 50px;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact-links p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #ccc;
}

.social-icons-row {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.social-icon:hover {
    background-color: rgba(255,255,255,0.15);
}

/* Footer */
footer {
    background-color: var(--card-dark);
    border-top: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 60px 8% 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 15px;
    line-height: 1.5;
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-section, .intro-services-card, .grid-two-columns, .testimonials-grid, .footer-cta {
        grid-template-columns: 1fr;
    }
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}